ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / Vector3 Structure / Vector3 Constructor / Vector3 Constructor(Single[])
The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements.

In This Topic
    Vector3 Constructor(Single[])
    In This Topic
    Initializes a new instance of the Vector3 struct.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal values() As System.Single _
    )
    public Vector3( 
       System.float[] values
    )

    Parameters

    values
    The values to assign to the X, Y, and Z components of the vector. This must be an array with three elements.
    Exceptions
    ExceptionDescription
    Thrown when values is null.
    Thrown when values contains more or less than three elements.
    See Also